home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Utilities
/
Text
/
BlacksEditor
/
Rexx
/
CountWords.bed
< prev
next >
Wrap
Text File
|
1998-06-24
|
406b
|
32 lines
/*
** $VER: CountWords.bed 1.0 (02.01.96)
**
** Count the number of words in the document
**
** Modified by Marco Negri
*/
OPTIONS RESULTS
SetDisplayLock ON
SetInputLock ON
SetBookmark 0
SetStatusBar "Counting..."
count = 0
MoveSOF
DO UNTIL RC ~= 0
MoveNextWord
count = count + 1
END
MoveBookmark 0
ClearBookmark 0
SetDisplayLock OFF
SetInputLock OFF
SetStatusBar "Counted " || count || " words"